Python/Basics/Volume of a Cube/volcube.py
#Program to find the volume of a cube
s=int(input("Enter side length of cube : "))
vol=s**3
print("Volume of cube of side length {0} is {1}".format(s,vol))
#Program to find the volume of a cube
s=int(input("Enter side length of cube : "))
vol=s**3
print("Volume of cube of side length {0} is {1}".format(s,vol))